home *** CD-ROM | disk | FTP | other *** search
-
- /*
- *
- * Finger support...
- *
- * Finger header defines. Written by Michael T. Horne - KA7AXD.
- * Copyright 1988 by Michael T. Horne, All Rights Reserved.
- * Permission granted for non-commercial use and copying, provided
- * that this notice is retained.
- *
- */
-
- #define FINGNAMELEN 8 /* max len of user name */
-
- /* finger protocol control block */
- struct finger {
- struct tcb *tcb; /* pointer to associated tcb */
- struct session *session; /* pointer to finger session */
- char *user; /* name of user to finger */
- FILE *fp; /* open file containing finger info */
- };
- #define NULLFING (struct finger *) 0
-
- extern char fingersuf[], /* see files.c */
- FINGERPATH[];
-
-